home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -readerstuff- / paul_bray / e-stuff / readme < prev    next >
Text File  |  1999-11-30  |  2KB  |  51 lines

  1.  
  2. These EModules Were Created By Paul Bray Using AmigaE v3.1i And PhxAss v4.39.
  3. You My Use These EModules In Your Programs.
  4. To Install Them, Copy The "Pauls" Drawer Into Your EModules.
  5. I Have Included Some Examples.
  6.  
  7. Here Is A List Of All The EModules:
  8.  
  9. average.m:  num:=average(list:PTR TO LONG)
  10.             The 'list' Is A List Of Numbers That Are To Be Averaged.
  11.             'num' Is The Result Of The 'list' Being Averaged.
  12.  
  13. faverage.m: float:=faverage(floatlist:PTR TO LONG)
  14.             Same As 'average' But Uses Floats.
  15.  
  16. doproc.m:   doProc(num, proc:PTR TO LONG, usevar=FALSE)
  17.             The 'num' Is The Number Of Times 'proc' Will Be Executed.
  18.             'proc' Is The Address To A Proc.
  19.             If 'usevar' Is Anything Other Than FALSE Then 'proc' Will Be 'proc(x)'.
  20.             The 'x' Is The Current Number Of Times 'proc' Has Been Executed.
  21.  
  22. math020.m:  div020(a:LONG, b:LONG)
  23.             Will Divide 'a' by 'b'.
  24.             REQUIRES: 68020+
  25.  
  26.             mul020(a:LONG, b:LONG)
  27.             Will Multiply 'a' by 'b'.
  28.             REQUIRES: 68020+
  29.  
  30. mouseinp.m: error:=mouseInput(inp=TRUE)
  31.             If 'inp' Is Anything Other Than TRUE The Mouse Input Will Switch Off.
  32.             But If 'inp' Is TRUE Mouse Input Will Switch On.
  33.             'error' will equal:
  34.                                 -1 If CreateMsgPort() Failed.
  35.                                 -2 If CreateIORequest() Failed.
  36.                                 -3 If Unable To Open The Input.Device.
  37.  
  38. pytha.m:    hyp:=fHyp(adj,opp)
  39.             'hyp' Is The Hypotenuse Of The Adjacent And Oppostie Sides.
  40.             They Are All In Float Form.
  41.  
  42.             side:=fSide(hyp,oside)
  43.             This Will Calculate The 'side' From The Hypotenuse And The Other Side.
  44.             The Adjacent And Oppostie Sides Are Calculated The Same Way.
  45.             They Are All In Float Form.
  46.  
  47. swapval.m:  swapval(a:PTR TO LONG, b:PTR TO LONG)
  48.             Swaps The Contenst Of 'a' And 'b'.
  49.             'a' Is The Address To The First Variable And 'b' Is The Address To The Second Variable.
  50.  
  51.